home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Frameworks / Grant's CGI Framework 1.0b12 / Documentation / Version History < prev   
Text File  |  1995-12-09  |  17KB  |  239 lines

  1. Grant's CGI Framework
  2. (Common Grant Interface :-)
  3.  
  4. Version History
  5.  
  6. Important: When updating your code from a previous version of the framework, you definitly need to make sure that you update your copy of the file "MyConfiguration.h" to include all the new configuration options. If you don't, various bits of code simply won't be compiled/included in your application!
  7.  
  8. 1.0 beta 12 - Saturday, December 10, 1995
  9.  
  10. AppleEvents and Threading
  11. It turns out (as pointed out by the knowledgeable and observant Wayne K. Walrath - Thanks Wayne!) that my implementation of threading of AppleEvents was bad :-(  Since AEProcessAppleEvent is not reentrant, it can't be set up as multi-threaded where it might be called more than once. So, I finally broke down and figured out how to use AESuspendTheCurrentEvent (which is not at all adequately explained in IM:IAC).
  12.  - 'CGIAESearchDoc' now has 4 companion functions: 'CGIAESearchDocProcessThread', 'cgiAESearchDocProcess', 'cgiAEComplete' and 'CGIAEResumeComplete'. You shouldn't actually need to worry about any of these since they are internal to the CGI framework code and not meant to be called by custom functions.
  13.  - 'theAppleEvent' parameter in 'cgiAEGetParamHTTPMethod', 'AEGetParamString', 'AEGetParamStringNoAlloc', 'AEGetParamShort' and 'AEGetParamLong' is now defined as const (as the universal headers say it should be).
  14.  - Removed threading from 'doHighLevelEvent' in "EventUtil.c". This was an invalid operation and has been replaced with (hopefully) correct usage in the CGI AppleEvent handler.
  15.  - The CGIRecord structure now includes pointers to the AppleEvent and the Reply AE. Also added more comments to the structure.
  16.  - Added the local variable vCGIAEResumeCompleteUPP to "CGI.c"
  17.  
  18. Symantec Support
  19.  - Now working for 68K projects!!!
  20.  - Added THINK Project Manager and Symantec Project Manager project files. The PowerPC project is still not working - I'm in contact with Symantec about this.
  21.  - Added #include <Types.h> to "Startup.c" for compiling with Symantec/THINK compilers.
  22.  - Added 'StringChar' function to "StringUtil.c" to make up for the non-standard behaviour of TPM's strchr library function. I've set the header file in such a way that other compilers will use the library function, but TPM/SPM will use the custom one.
  23.  - Added 'kCompiling_For_Symantec' to compiler_stuff.h
  24.  
  25. Metrowerks Support
  26.  - Added CodeWarrior 7 project files.
  27.  - Changed creator type of most of the source files to 'CWIE' the CodeWarrior IDE (cw7)
  28.  
  29. Interface
  30.  - added new function 'MyActivateWindow' to "MyHandlers.c".
  31.  - changed 'WindowActivate' to support 'MyActivateWindow'.
  32.  - Added 'Window_dlgModeless' to the 'window_type' enumeration in "WindowInt.h"
  33.  - Added some more "#if kCompileWithApplicationWindows" lines to "WindowInt.c"
  34.  
  35. Resources
  36.  - Renamed "Customize.rsrc" to "MyCustom.rsrc". Changed in "CGI.µ" as well.
  37.  
  38. Miscellaneous
  39.  - Added platform specific variation to MyAssert ("DebugUtil.c")
  40.  - 'MyCGIQuit' was missing the name of the Boolean parameter ('allowUserInteract'). I don't know why it compiled in CodeWarrior without the parameter being named, I wish it wouldn't.
  41.  - Added 'static' modifier to all local only functions. (CGI.c, ErrorUtil.c, EventUtil.c, ListSTAR.c, Main.c, Startup.c, WindowInt.c) (don't ask why this wasn't done before - probably just slothfulness on my part)
  42.  - New function 'ResetQuitIdleTimer' in "Quit.c". This needs to be called at the begining and end of any event which should reset the 'quit on idle time' timer.
  43.  - Corrected error handling during field allocation to set the name and value pointers of the current field to nil before trying to allocate memory for them. Then, if the alloc fails, the code won't try to deallocate them.
  44.  - Now using custom function StringChar instead of strchr (which is actually a macro that just uses strchr in the case of non-Symantec compilers - if that's not confusing enough for you ;-)
  45.  
  46. Modified Files
  47. AEFunc.c, AEFunc.h, CGI.c, CGI.h, compiler_stuff.h, Customize.rsrc, DebugUtil.c, ErrorUtil.c, EventUtil.c, ListSTAR.c, Main.c, MyCGIProcess.c, MyCustom.rsrc, MyHandlers.c, Quit.c, Quit.h, Startup.c, StringUtil.c, StringUtil.h, WindowInt.c, WindowInt.h (and the project files)
  48.  
  49. Modified Documents: Read Me
  50.  
  51. New Documents
  52. CGI Parameters, Documentation, References (where to find more info), Royalties (what and how to pay for this) cgi_params.html (by Chuck Shotton, included with permission)
  53.  
  54. Deleted Documents
  55. "CGI Documentation" and "How To" (their contents are now in "CGI Parameters" and "Documentation")
  56.  
  57. 1.0 beta 11 - Sunday, October 29, 1995
  58.  
  59. * EventUtil:
  60.  - Moved most of the update event code from 'doUpdateEvent' to 'WindowUpdate'
  61.  - 'doKeyPress' now calls 'MyKeyPress'
  62.  - 'doMouseDown' can now call 'MyDoStartDrag' if 'kCompileWithDragNDrop' configuration option is set.
  63.  - New external custom functions: 'MyKeyPress' and 'MyDoStartDrag'
  64.  
  65. * WindowInt:
  66.  - Added support for Window_Application window type. Any windows that have the WindowInfoHdl as their RefCon that have this type specified, will be passed to a custom close function ('MyCloseWindow' in "MyHandlers.c") that will allow the custom application to do any special clean-up that is required when a window is closed.
  67.  - Note: I really need to document the WindowInfoHdl stuff since this is the mechanism I use to track windows other than non-movable modal-dialogs. I'll just say for now that you should pay particular attention to the functions 'WindowNewSetInfo', 'WindowGetDataHdl', and 'WindowDisposeInfoHdl'.
  68.  - Added error detection to 'windowHasScrollBars'
  69.  - New functions: 'WindowNewSetInfo', 'WindowSetInfoHdl', 'WindowGetInfoHdl', 'WindowDisposeInfoHdl', 'WindowGetDataHdl', 'WindowUpdate'
  70.  - Modified functions: 'WindowClose', 'WindowCloseAll', 'WindowContentClick'
  71.  
  72. * MyHandlers.c:
  73. New functions: 'MyCloseWindow', 'MyUpdateWindow', 'MyKeyPress'
  74.  
  75. * Configuration:
  76. 'kCompileWithDragNDrop', 'kCompileWithApplicationWindows', 'kCompileWithKeyboardEvents'
  77.  
  78. * Misc:
  79.  - Modified "AboutBox.c" to not lose memory in the PPC code when allocating the UPP for the Icon drawing user item function. Affected functions: 'AboutBoxInit' and 'AboutBoxOpen'.
  80.  - Added comment to 'AEInstallHandlers'
  81.  - Added file type constants to "constants.h"
  82.  - New global: gHasDragNDrop
  83.  - Added 'startupDrag' (Drag Manager initialization) to "Startup.c"
  84.  
  85. * Modified Files:
  86. "AboutBox.c", "AEHandlers.h", "constants.h", "EventUtil.c", "EventUtil.h", "globals.h", "MyConfiguration.h", "MyHandlers.c", "Startup.c", "WindowInt.c", "WindowInt.h"
  87.  
  88. 1.0 beta 10 - Sunday, October 1, 1995
  89.  
  90.  - New Functions: 'MyStartup', 'MyQuit', 'MyOpenDocument', 'MyCGIQuit'
  91.  - Renamed 'myInstallAEHandlers' 'AEInstallHandlers' to avoid confusion.
  92.  - Moved the calls to 'MyCGIStartup' and 'MyListSTARStartup' from "Startup.c" to "MyHandlers.c".
  93.  - Rearranged the project files to have all the custom and optional sources / resource-files in one group called "Customize".
  94.  - New utility function 'ProcessGetMyFSSpec' in "ProcessUtil.c". Fills out an FSSpec with the application's location. Thanks go to Greg S. Combs.
  95.  - New optional (via "MyConfiguration.h") global variable 'gProcessFSSpec' that will automatically be filled in at startup with the location of the cgi application. Suggested by GSC.
  96.  - Changed some calls to 'HLockHi' to plain 'HLock' because moving the handle high in the heap - in those cases - was unnecessary and a waste of time.
  97.  - Added 'AEGetParamStringNoAlloc' function. "AEFunc.c"
  98.  - Configuration option for turning off AppleEvents being handled through spawning new threads. If you do turn this off, you are on your own for threading event handling.
  99.  - Moved the constant 'kProfileNameStr' from "compiler_stuff.h" to "MyConfiguration.h".
  100.  - Created configuration option for turning assertions on/off in "MyConfiguration.h". Modified "DebugUtil.h" so that you don't have to change it to determine whether assertions are on/off.
  101.  - Fixed bug in 'CGIDecodeSpecialChars'. Was accessing the wrong byte of theString in the second 'else if' line of determining the low order byte. 'theString[read+1]' has been corrected to 'theString[read+2]' in the two occurrances on that line. Big thanks to Stefan Strand of "Teknik i Media AB" for identifying my error.
  102.  
  103. Modified Files: AEFunc.c, AEFunc.h, AEHandlers.c, AEHandlers.h, CGI.c, CGI.h, compiler_stuff.h, DebugUtil.c, DebugUtil.h, ErrorUtil.c, globals.h, MyConfiguration.h, ProcessUtil.c, ProcessUtil.h, Quit.c, Quit.h, Startup.c, Startup.h
  104.  
  105. New Files: MyHandlers.c
  106.  
  107. 1.0 beta 9 - Saturday, September 23, 1995
  108.  
  109. Threads Configuration
  110.  - You will want to put a #if wrapper around any references you may have to gHasThreadMgr as in:
  111.     #if kCompileWithThreadsOptional
  112.     if ( gHasThreadMgr )
  113.     #endif
  114.    (be sure to include #include "MyConfiguration.h" in any such files)
  115.    This will work, even in cases like if (gHasThreadMgr) { some code } where you wrap it as #if kCompileWithThreadsOptional if ( gHasThreadMgr ) #endif { some code } because the stuff in {} will be treated as a block statement which (to my knowledge) will not affect compilation under C.
  116.  
  117.  - A tonne of new configuration options. Located and explained in "MyConfiguration.h"
  118.  - Removed the storing of the AppleEvent Record and Reply Record in the CGIHdl since they weren't being used. The relevant lines (in CGI.h and CGIAESearchDoc) were just commented out, so can easily be replaced if you really want them.
  119.  - Now using global variable 'gIdleTimeToQuit' instead of constant 'kIdleTimeToQuit' to check the idle time. 'gIdleTimeToQuit' is initialized to 'kIdleTimeToQuit' on startup, but can be changed at any time you want to after that (IE. your initialization code or on an interface call).
  120.  - Added global 'gDoIdleQuitOnOpenApp' which starts off set to the 'kCompileWithIdleQuitOnOpenApp' configuration option. This is basically a flag which tells whether the application will quit after the idle time even if the application was just opened ordinarily (OpenApplication AppleEvent - not CGI launch).
  121.  - Moved the memory constants to "MyConfiguration.h" from "MemoryUtil.h" to make changing them more convenient.
  122.  - Added new stuff to the "How To" document, including: Modifying/adding menus and menu items. New document (incomplete) describing the CGIRecord/CGIHdl data structure and how it works.
  123.  - Increased 'kCGIParamMaxSize' to hold the actual maximum parameter size.
  124.  - QuitPrepare now checks event queue for any outstanding high level events (Apple Events) and processes them before quitting. This will hopefully prevent, or at least reduce, lost events if a CGI call is made to the CGI as it is preparing to quit.
  125.  
  126. Modified Files: AEHandlers.c, CGI.c, CGI.h, constants.h, globals.h, EventUtil.c, MemoryUtil.h, MyConfiguration.h, Quit.c, Startup.c
  127.  
  128.  
  129. 1.0 beta 8 - Monday, September 11, 1995
  130.  
  131. Added Send Partial AppleEvent support (Warning: untested)
  132.  
  133. New AppleEvent parameters:
  134.  - 'Pvrs' - 'version' - version number of the http server.
  135.  - 'Kcid' - 'connection' - connection ID used by send partial events.
  136.  
  137. New CodeWarrior Profiler support.
  138.  - Additions to "Compiler_Stuff.h", "Globals.h" and 'main' in "Main.c".
  139.  
  140. Rearranged resource files:
  141.  - "essential.rsrc" must be included.
  142.  - "Customize.rsrc" should be modified to meet the individual application's need.
  143.  - "ListSTAR.rsrc" must be included in projects that support the ListSTAR events.
  144.  - "CGI aete.rsrc" is the AppleScript resource for applications that only support CGI events.
  145.  - "ListSTAR aete.rsrc" is the AppleScript resource for applications that only support ListSTAR events.
  146.  - "CGI and ListSTAR aete.rsrc" is the AppleScript resource for applications that support both CGI and ListSTAR events.
  147.  
  148. New Compiling Configuration Options. (These help with optimization)
  149.  - See the new file "MyConfiguration.h" for details.
  150.  - One of the new configuration options is to compile as a background-only application.
  151.  
  152. Miscellaneous
  153.  - Added string to http headers 'STR#' resource for multipart server push response.
  154.  - Added 'kAEMyTimeoutInTicks' constant to the "AEFunc.h" header.
  155.  - Added code to 'doMenu' in "MenuFunc.c", to reset the self-quit timer on menu events.
  156.  - Removed unused code in main event loop (cursor adjustment)
  157.  - Changed 'ErrorStartup' to use 'ExitToShell' (removed extraneous 'ExitToShell' calls from "Startup.c".
  158.  - Moved modeless dialog support from main event loop to mouse up/down handlers.
  159.  - Changed 'ProcessIsFront' to take a ProcessSerialNumber instead of a long.
  160.  - Increased 'kSleepTicks' to 2 seconds to allow other processes to have more time.
  161.  
  162. 1.0 beta 7 - Saturday, August 12, 1995
  163.  
  164.  - Added code to quit after given period of no activity (kIdleTimeToQuit in "Constants.c"). Affected functions 'doIdle', 'doAEOpenApp', 'StartupApplication' and 'CGIAESearchDoc'.
  165.  - Rearranged the source folders a bit and moved the rsrc files into their own folder.
  166.  - Corrected ListSTAREvent 'aete' to have the correct class.
  167.  - Changed 'triggerValue' field of 'ListSTARRecord' to be a 'long *' so it can be properly added to the AppleEvent reply.
  168.  
  169. 1.0 beta 6 - Friday, August 11, 1995
  170.  
  171.  - Fixed AboutBox to use UniversalProcPtr for the Icon user item.
  172.  - Finally tracked down the "losing pointers" problem with the threaded code! I wasn't properly recycling the threads.
  173.  - Now checking for missed required params in CGI Apple Event.
  174.  
  175. 1.0 beta 5 - Tuesday, August 8, 1995
  176.  
  177.  - Added 'MyCGIStartup' function to "MyCGI.c". Allows for easily adding to the startup sequence without having to modify the framework.
  178.  - Fixed 'cgiDisposeHandle' to actually dispose the handle (ouch, what a memory leak!) as well as a few other leaks in "CGI.c". I told you this was beta code!
  179.  - Moved 'cgiAEGetParamString' and 'cgiAEGetParamShort' from "CGI.c" to 'AEGetParamString' and 'AEGetParamShort' in "AEFunc.c".
  180.  - Removed unneccessary 'actualType' variable from 'CGIAESearchDoc'.
  181.  - Added more assertions to various functions.
  182.  - Moved calls to cgi initialization code from 'main' function to 'StartupApplication'.
  183.  - Moved code to install CGI AppleEvent to the 'InitCGIUtil' function.
  184.  - Added basic support for ListSTAR trigger and action events. (easy to not include if you don't want this, see the section on "ListSTAR Event Stuff" above).
  185.  - Added two new 'aete' resources to support the ListSTAR event or both CGI and ListSTAR events. Be sure to use only one of the included 'aete' resources.
  186.  - Corrected original 'aete' resource #0 to use 'TEXT' instead of 'char' for parameter types.
  187.  - Now disposing of window info handle when about box closes. All about box memory leaks fixed.
  188.  - Now, I ask you, why would I be HLocking a DialogPtr in 'aboutBoxAppIcon' ??? (fixed)
  189.  - Added 'gQuit = true;' line to 'MyCGIProcess' so that the cgi will quit after it finishes processing cgi events. This is a kludgy hack that will go away once I get around to writing a proper quit timer.
  190.  
  191. 1.0 beta 4 - Sunday, August 6, 1995
  192.  
  193.  - 'CGIFormFieldsFindRecord' now takes a CGIHdl as it's first parameter, rather than a CGIFormField*. See the function’s comments for instructions.
  194.  - Updated and expanded the documentation.
  195.  - Added "compiler_stuff.h" (#included in every source file) to help deal with differences between compiler environments.
  196.  - Added code to "mainEventLoop" to yield more often if there is more than one sub-thread.
  197.  - Split "cgi.rsrc" into two files ("cgi.rsrc" and "MyCGI.rsrc"). The "MyCGI.rsrc" is for resources that may need to change for individual cgi applications. "cgi.rsrc" is for resources that shouldn't need to change.
  198.  - Found friend in Ottawa with a MW/PPC compiler (no PowerPC, though) so I made some changes to the PPC project file.
  199.  - Changed "Event.c" to "EventUtil.c".
  200.  
  201. 1.0 beta 3 - Friday, August 4, 1995
  202.  
  203. Hopefully last beta before first golden release...
  204. [boy was I ever optimistic when I wrote that!]
  205.  - Added MW/PPC project file and fat application.
  206.  - Moved 'MyCGIProcess' to it's own file.
  207.  - Changed thread code to use pre-allocated pool of threads. Maximum number of 5 sub-threads at any one time (change the constant 'kStartupThreadsPreallocate' in "Startup.c" to have a different number). This will improve performance, especially on very busy systems.
  208.  - Added thread support in "ProcessUtil.c", "AEFunc.c", "AEHandlers.c", "CGI.c", "WindowInt.c", "main.c" and "Quit.c"
  209.  - Fixed bug in dialog event filter "DialogUtil.c"
  210.  
  211. 1.0 beta 2 - Tuesday, August 1, 1995
  212.  
  213. PowerPC code fix. The following files were updated:
  214.  - ErrorInt.c
  215.     Added use of NewModalFilterProc in ErrorAlertSystemString and ErrorAlertStartupString
  216.     functions.
  217.  - main.c
  218.     Corrected documentation comment for MyCGIProcess function.
  219.  - MemoryUtil.c
  220.     Added use of NewGrowZoneProc in InitializeEmergencyMemory function.
  221.  - Startup.c
  222.     Commented out troublesome line in startupThreads function.
  223.     /* ( (Ptr)NewThread != kUnresolvedSymbolAddress ) && */
  224.     Any suggestions for how to fix this would be most welcome.
  225. Thanks to Gregory S. Combs for tracking down these errors.
  226.  
  227. 1.0 beta 1 - Sunday, July 9, 1995
  228.  
  229. First release. Distributed on Apprentice CD and Info-Mac ftp archives.
  230.  - 68K code only 
  231.  - AppleScript 'aete' resource 
  232.  - Basic thread support
  233.  
  234. ____________________
  235. StarNine, ListSTAR, and WebSTAR are trademarks of StarNine Technologies, Inc.
  236. AppleScript, Macintosh, Mac, and MacTCP are trademarks or registered trademarks of Apple Computer, Inc.
  237. UNIX is a registered trademark of Novell, Inc.
  238. Copyright ©1995 by Grant Neufeld
  239.